Skip to content

Commit

Permalink
dshow_pin: dont return a value from a void function
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
  • Loading branch information
michaelni committed Mar 25, 2013
1 parent a2f7314 commit ea4c99d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libavdevice/dshow_pin.c
Expand Up @@ -358,5 +358,5 @@ libAVMemInputPin_Destroy(libAVMemInputPin *this)
{
libAVPin *pin = (libAVPin *) ((uint8_t *) this - imemoffset);
dshowdebug("libAVMemInputPin_Destroy(%p)\n", this);
return libAVPin_Destroy(pin);
libAVPin_Destroy(pin);
}

0 comments on commit ea4c99d

Please sign in to comment.